home *** CD-ROM | disk | FTP | other *** search
/ Shocking The Web CD-ROM / SHOCK_CD.ISO / mac / Chapter Tutorials / ch08.Lingo / tutor.dir / 00136.txt < prev    next >
Encoding:
Text File  |  1996-12-05  |  346 b   |  14 lines

  1. global gCurrID, gNextMovieReady
  2. on idle
  3.  if NetDone(gCurrID) = TRUE then    
  4.   if netError(gCurrID) = "OK" then
  5.    if NetTextResult(gCurrID) contains "not found" then
  6.      alert "File Not Found"
  7.    else 
  8.      set gNextMovieReady = TRUE
  9.          end if
  10.   else if NetError() contains "Error" then 
  11.         alert "Network Error:" && NetError()
  12.   end if
  13.  end if
  14. end